From: emellor@ewan Date: Tue, 4 Oct 2005 10:28:25 +0000 (+0100) Subject: Fix debugging statement that was referring to non-existent field. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16763^2~54^2~11 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=c8d3c0d2435a0989e05df3e9fdb663d08f293952;p=xen.git Fix debugging statement that was referring to non-existent field. Signed-off-by: Ewan Mellor --- diff --git a/linux-2.6-xen-sparse/drivers/xen/netback/netback.c b/linux-2.6-xen-sparse/drivers/xen/netback/netback.c index a4f9c447d2..3408bb40cc 100644 --- a/linux-2.6-xen-sparse/drivers/xen/netback/netback.c +++ b/linux-2.6-xen-sparse/drivers/xen/netback/netback.c @@ -553,9 +553,9 @@ static void net_tx_action(unsigned long unused) /* No crossing a page as the payload mustn't fragment. */ if (unlikely((txreq.offset + txreq.size) >= PAGE_SIZE)) { - DPRINTK("txreq.addr: %lx, size: %u, end: %lu\n", - txreq.addr, txreq.size, - (txreq.addr &~PAGE_MASK) + txreq.size); + DPRINTK("txreq.offset: %x, size: %u, end: %lu\n", + txreq.offset, txreq.size, + (txreq.offset &~PAGE_MASK) + txreq.size); make_tx_response(netif, txreq.id, NETIF_RSP_ERROR); netif_put(netif); continue;